home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / programming / other / asmpro / asmpro.readme < prev    next >
Text File  |  1999-04-19  |  5KB  |  130 lines

  1. Short:    Asm-Pro V1.16 mc680x0 macro assembler
  2. Author:   solognt@worldonline.nl (Solo/Genetic)
  3. Uploader: solognt@worldonline.nl (Solo)
  4. Version:  1.16
  5. Type:     dev/asm
  6.  
  7. Asm-Pro is a mc680x0/6888x/68851 macro assembler/disassembler/linker with 
  8. integrated editor, monitor and debugger.
  9.  
  10. With Asmpro you have a complete package for writing assembler programs on your 
  11. Amiga. Asm-Pro is simular to asm-one but it has several improvements and it IS system 
  12. friendly (thus gfx-card compatible. It looks great on a 800x600 CGX screen).
  13.  
  14. Requirements:
  15.  
  16.  - Kickstart 2.04+
  17.  - ReqTools.library (Try Aminet)
  18.  
  19.  
  20. HISTORY:
  21.  
  22. ================= Asm-Pro V1.16 (01-04-1999) =======================
  23. [Public release]
  24.  
  25. - Changed openscreen stuff In Asm-Pro. When screenmode from prefs
  26.   could not be opened a pal/ntsc screen was created.. (not very usefull
  27.   when you have a gfx-card.. so now it opens a screenmode requester..
  28.   (yes yes I noticed it only after I installed my BVision)
  29. - Fixed debug error with instructions like "move.l  #-1,(a1,d1.w*4)"
  30.  
  31. - "cmp.b  #0,var(pc)" works now.
  32. - "fmove.w #1,fp0" works too.
  33. - Fixed move16 problems in the debugger.
  34. - Also fixed brs.l and bra.l troubles in debugger.
  35. - Fixed fmove.b/w in debugger.
  36.  
  37. - Changed screenmode stuff to handle more than 4 colors. Now you can
  38.   open screens from 2 to 16 colors (code works for more than 16 colors
  39.   but I dont want to save all of them in the prefsfile).
  40.   (some problems with reqtools showing 2 much colors in prefs though)
  41. - Changed fontrequester from reqtools 2 asl.
  42.   (will remove all the reqtools stuff for future compatibility)
  43. - Added opcode coloring in syntaxprefs.
  44. - The ':' after a label is now also colored :).
  45.  
  46.  
  47. ================= Asm-Pro V1.15 (05-12-1998) ========================
  48. [Sinterklaas release] :)
  49. [Public release]
  50.  
  51. - Changed Write block from Amiga-w to Amiga-W.
  52. - Amiga-w is now same as 'U'pdate (more compatible to existing software).
  53.   and also works in the editor (but will end up in command mode will fix
  54.   that later).
  55. - Changed the output of an error in an include file. It now shows the correct
  56.   include file and 3 lines of code, the middle one is highlighted and
  57.   shows the errorline. Then the include line in the current source buffer
  58.   is shown..
  59.  
  60. Like this:
  61.  
  62. ** Undefined Symbol
  63. In file DH1:ASMPRO/INCLUDE/replay/Player6.1.s
  64.          11 P61_motuuli:
  65. »        12  bra.w P61_Init
  66.          13  ifeq CIA
  67.  
  68.   144  include replay/Player6.1.s
  69.  
  70. - Change source in commandline with Function keys implemented.
  71. - D$0100000 works again... bit 24 was cleared iso bit 0... oops..
  72. - Added the commandline options RN and WN.
  73.   RN will open a filerequester for opening a (source) text file with
  74.   no wildcards. should be usefull for editing other text files like
  75.   the startup-sequence..
  76.   WN will do the same for write source and will also not write the
  77.   savemarks on top of the file..
  78. - Recoded the syntax highlighting routine (lot faster) and now it also
  79.   handles labels (maybe more to come).
  80.   (if you use '*-*-*-*' it will not be colored as a comment coz you can
  81.   also do something like this: test = *-2 and then it isn't a comment)
  82. - Fixed bug in changing source buffers when MCP's (060) CopyMemQuick
  83.   patch is activated.
  84. - Masked some more chars in hexdump when 'Ascii only' option is set.
  85. - Added -f (force) option to the AUTO directive. When this option is
  86.   used no more requesters will popup to report you that the
  87.   'File allready exists !! Are you sure ??'. Now it will always
  88.   create/overwrite the file.
  89.   The force option only has to be used once in a source like in the
  90.   example below. It will write Start to End twice without any requesters.
  91.  
  92.         auto    -f wb ram:test\Start\End\
  93.         auto    wb ram:test\Start\End\
  94.  
  95. Start:
  96.         dc.b    "Asm-Pro"
  97. End:
  98.  
  99. - Added Syntax color prefs window.
  100. - Backwards block select will not freeze asmpro anymore. backwards
  101.   selection is not colored anymore though (will fix that later).
  102. - Added Line numbers in the source (by popular demand)..
  103. - Added search option in monitor (so you can search for your
  104.   favourite opcode from inside the monitor ;).
  105. - jmp    ([(label).w,pc,d0.l*4]) works again... (forgot to check for
  106.   the last ']')
  107. - Indices with preceeding 0 do assemble now (e.g. move (a0,d0.w*04),d0)
  108. - Fill is amiga+f, insert is Amiga+i or Amiga+v
  109. - After assembling mem pointer will be set to begin of your program.
  110. - Updated the Asmpro.guide file.
  111.  
  112.  
  113. --------------------------------
  114.  
  115. Major changes sinds Version 1.0:
  116.  
  117.  - Editor and other text output is system friendly now and works great on your
  118.    favourite gfx-card. 
  119.  - Included a font requester and made the editor font sensitive. 
  120.  - New gui for starting up asm-pro, workspace mem type and size can be saved with 
  121.    wp (write prefs). 
  122.  - Multiple source file extentions (try "(.s|.asm|.i)" as source extention to get all
  123.    sources and includes in the file requester.) 
  124.  - Debug registers have there own window. 
  125.  - Added the mc68060 commands. 
  126.  - Added syntax coloring. Comments, labels, opcodes, etc. can be shown in another color. 
  127.  - And more.. read the included History file..
  128.  
  129.  Http://surf.to/asmpro (c)1998 Genetic
  130.